home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / misc / egs.lha / EGS / EGS_Devels / Examples / EGS_Menu / includes.c < prev    next >
C/C++ Source or Header  |  1993-02-17  |  1KB  |  55 lines

  1. /*
  2. ** Extra Amiga includes
  3. */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <dos/dos.h>
  9. #include <exec/memory.h>
  10. #include <proto/dos.h>
  11. #include <proto/exec.h>
  12.  
  13. /*
  14. ** These are all EGS includes
  15. **
  16. */
  17.  
  18. #define __DICE_INLINE
  19.  
  20. #include <egs/egs.h>
  21. #include <egs/egsblit.h>
  22. #include <egs/egslayers.h>
  23. #include <egs/egsgfx.h>
  24. #include <egs/egsintui.h>
  25. #include <egs/egsgadbox.h>
  26. #include <egs/egsrequest.h>
  27. #include <egs/egb/gbmenuselect.h>
  28. #include <egs/egb/gbradio.h>
  29. #include <egs/egb/gbscrollbox.h>
  30. #include <egs/egb/gbselect.h>
  31. #include <egs/egb/gbsets.h>
  32. #include <egs/egb/gbtextinfo.h>
  33.  
  34. /*
  35. ** Include proto files
  36. ** These will also include the #pragma definitions
  37. */
  38.  
  39. #include <egs/proto/egs.h>
  40. #include <egs/proto/egsblit.h>
  41. #include <egs/proto/egslayers.h>
  42. #include <egs/proto/egsgfx.h>
  43. #include <egs/proto/egsintui.h>
  44. #include <egs/proto/egsgadbox.h>
  45. #include <egs/proto/egsrequest.h>
  46. #include <egs/proto/gbmenuselect.h>
  47. #include <egs/proto/gbradio.h>
  48. #include <egs/proto/gbscrollbox.h>
  49. #include <egs/proto/gbselect.h>
  50. #include <egs/proto/gbsets.h>
  51. #include <egs/proto/gbtextinfo.h>
  52.  
  53. /*
  54. */
  55.